projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6f6af8
)
gnus-util.el (gnus-macroexpand-all): Fix last change.
author
Katsumi Yamaoka
<yamaoka@jpl.org>
Fri, 3 Dec 2010 02:30:12 +0000
(
02:30
+0000)
committer
Katsumi Yamaoka
<yamaoka@jpl.org>
Fri, 3 Dec 2010 02:30:12 +0000
(
02:30
+0000)
lisp/gnus/gnus-util.el
patch
|
blob
|
history
diff --git
a/lisp/gnus/gnus-util.el
b/lisp/gnus/gnus-util.el
index d71035754a738a0b5d0a2813c1cb82d151525b96..af5159ece3bfd7e7db9722a53b008f1c265dcb5a 100644
(file)
--- a/
lisp/gnus/gnus-util.el
+++ b/
lisp/gnus/gnus-util.el
@@
-2042,10
+2042,9
@@
If no macros are expanded, FORM is returned unchanged."
(if (consp form)
(let ((idx 1)
(len (length form))
- e
lem e
xpanded)
+ expanded)
(while (< idx len)
- (when (consp (setq elem (nth idx form)))
- (setcar (nthcdr idx form) (gnus-macroexpand-all elem)))
+ (setcar (nthcdr idx form) (gnus-macroexpand-all (nth idx form)))
(setq idx (1+ idx)))
(if (eq (setq expanded (macroexpand form)) form)
form